home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
c
/
unix
/
src
/
time.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-08-25
|
202 b
|
13 lines
#include "amiga.h"
#include "timeconvert.h"
time_t time(time_t *clock)
{
struct timeval now;
if (_gettime(&now) < 0) return -1;
if (clock) *clock = now.tv_secs;
return (time_t)now.tv_secs;
}